473,520 Members | 2,985 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Display clients Timezone name when in daylight savings time

ok im getting tired of looking for an answer and coming up short with
scripts that dont work. i have a application that uses GMT for all its
times and needs the clients timeoffset for showing the correct times
for everything. i use date.getTimezoneOffset() which works fine and
shows the daylight savings time correct value of -4 since im in eastern
standard time and its daylight savings time right now. well eastern
standard time is normally -5 and my dropdown populates with the -4
showing atlanta time. which will confuse the user and then they will
pick -5 eastern time which will make everything an hour off. i have a
disclaimer now, but i just want to know what the easiest way to display
the users time zone name useing the getTimezoneOffset() value. i
really want to be able to detect if the user has the adjust for
daylight savings checked for their machine.

Jul 23 '05 #1
2 7206
Jc
ho*****@gmail.com wrote:
ok im getting tired of looking for an answer and coming up short with
scripts that dont work. i have a application that uses GMT for all its
times and needs the clients timeoffset for showing the correct times
for everything. i use date.getTimezoneOffset() which works fine and
shows the daylight savings time correct value of -4 since im in eastern
standard time and its daylight savings time right now. well eastern
standard time is normally -5 and my dropdown populates with the -4
showing atlanta time. which will confuse the user and then they will
pick -5 eastern time which will make everything an hour off. i have a
disclaimer now, but i just want to know what the easiest way to display
the users time zone name useing the getTimezoneOffset() value. i
really want to be able to detect if the user has the adjust for
daylight savings checked for their machine.


A quick search of google groups pulled up this thread:
http://groups.google.ca/group/comp.l...501e91d4fdca5/

Jul 23 '05 #2
JRS: In article <11*********************@g43g2000cwa.googlegroups. com>,
dated Fri, 24 Jun 2005 13:27:43, seen in news:comp.lang.javascript,
ho*****@gmail.com posted :
ok im getting tired of looking for an answer and coming up short with
scripts that dont work. i have a application that uses GMT for all its
times and needs the clients timeoffset for showing the correct times
for everything. i use date.getTimezoneOffset() which works fine and
shows the daylight savings time correct value of -4 since im in eastern
standard time and its daylight savings time right now. well eastern
standard time is normally -5 and my dropdown populates with the -4
showing atlanta time. which will confuse the user and then they will
pick -5 eastern time which will make everything an hour off. i have a
disclaimer now, but i just want to know what the easiest way to display
the users time zone name useing the getTimezoneOffset() value. i
really want to be able to detect if the user has the adjust for
daylight savings checked for their machine.


Please write in proper English, or other well-known ISO-7-compartible
language, with proper capitalisation and punctuation. If you want
people to take care over answering your question, you must first show
care in asking it.

Basically, what you write is incomprehensible garble; it sounds like a
well-known politician, maybe Bush or Prescott.

There are no reliable alphabetical forms, world-wide, for denoting
offsets from GMT/UTC. Whilst EST is generally taken as meaning Eastern
Standard Time, it could refer to (at least) Australia and America - and
what do the Ethiopians, Eritreans, and Egyptians use?

Javascript does not give access to any such name or abbreviation.

However, if you read the newsgroup FAQ thoughtfully enough, you'll see
how to determine the Winter and Summer offsets from GMT - the
information is available via the sig below.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
9228
by: Monty | last post by:
Let's say you provide an online service from 7:00AM to 6:00PM Eastern Time (daylight time in the summer). Is there way of showing these hours of availability on a web page in the user's local time? Thanks in advance for any advice.
3
4496
by: Ilja Booij | last post by:
Hi all, I have some trouble with the following: I'm getting a time string, in YYYY-MM-DD HH:mm:ss format, which I need to translate into a string with DD-Mon-YYYY HH:mm:ss +HHMM, where the last part is the timezone offset. I've tried to do it with the following function. This works for me, I get +0200 for the timezone part, which...
6
2455
by: Bijoy Naick | last post by:
I have an events table which stores the time of each event - the time and assoicated timezone. Is there a way of converting this time into GMT (with support for DST).. some sort of function which accepts a time and timezone as parameters and returns the time in GMT?
5
8023
by: rgrandidier | last post by:
I have a SQL table that stores the UTC time for a column, I then want to display the UTC time to the user in their local time. My approach is to have the user set their time zone via their user profile. Then to use that setting to convert the UTC date/time to the users local time. I am using C# via ASP.Net. Any suggestions? I thought I...
13
14443
by: Stuart Bishop | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi. I'm trying to determine the best way of saying 'The current time in UTC with no time zone information'. I'm currently using CURRENT_TIMESTAMP AT TIME ZONE 'UTC' and inserting into columns defined as TIMESTAMP WITHOUT TIME ZONE which appears to
13
2829
by: Bruno Wolff III | last post by:
Recently there has been some discussion about attaching a timezone to a timestamp and some other discussion about including a 'day' part in the interval type. These two features impact each other, since if you add a 'day' to a timestamp the result can depend on what timezone the timestamp is supposed to be in. It probably makes more sense to...
2
1204
by: Roshawn Dawson | last post by:
Hi, I have a datetime value that is already in GMT (UTC) time. What I would like to do is convert this value into Pacific Standard Time, but I also need to account for daylight savings time. Simply subtracting eight hours from the value will give me the proper time (subtracting seven hours if daylight savings time). I tried using the...
2
3339
by: Max | last post by:
I need to display time as Eastern Time. The problem I'm having is that our server is in Arizona where there is no Daylight Savings time. That means half the year I need to add 2 hours to the time and other other half I need to add 3 hours. I was trying to use IsDaylightSavingTime by passing the local date time but it is never daylight savings...
6
20315
by: jehugaleahsa | last post by:
Hello: I would like it so that the time displayed was always for CDT/CDS. Potentially, the application can be run at locations in Mountain Time or Central Time. This is what I have now: // get the UTC offset depending on day light savings double hourOffset = DateTime.Now.IsDaylightSavingTime() ? -5 : -6; DateTimeOffset offset =...
0
7321
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7231
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7463
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7201
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7587
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5763
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
3295
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3295
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
527
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.